Skip to content

chore(deps): update python updates#161

Merged
Medicopter117 merged 1 commit intomainfrom
renovate/python-updates
Feb 7, 2026
Merged

chore(deps): update python updates#161
Medicopter117 merged 1 commit intomainfrom
renovate/python-updates

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Feb 7, 2026

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence Type Update
FastAPI (changelog) ==0.100.0==0.128.4 age confidence project.dependencies minor
MarkupSafe (changelog) ==3.0.2==3.0.3 age confidence patch
PyYAML (source) ==6.0.1==6.0.3 age confidence patch
SimpleColoredLogs ==1.3.0==1.16.1.2026 age confidence project.dependencies minor
SimpleColoredLogs ==1.3.0==1.16.1.2026 age confidence minor
anyio (changelog) ==4.12.0==4.12.1 age confidence project.optional-dependencies patch
anyio (changelog) ==4.9.0==4.12.1 age confidence minor
beautifulsoup4 (changelog) ==4.13.4==4.14.3 age confidence minor
build (changelog) ==1.3.0==1.4.0 age confidence project.optional-dependencies minor
charset-normalizer (changelog) ==3.4.2==3.4.4 age confidence patch
click (changelog) ==8.2.1==8.3.1 age confidence minor
docutils (changelog) ==0.22.3==0.22.4 age confidence patch
fastapi (changelog) ==0.100.0==0.128.4 age confidence project.optional-dependencies minor
fastapi (changelog) ==0.115.6==0.128.4 age confidence minor
httpx (changelog) ==0.24.1==0.28.1 age confidence minor
jaraco.functools ==4.3.0==4.4.0 age confidence minor
multidict ==6.7.0==6.7.1 age confidence project.optional-dependencies patch
multidict ==6.7.0==6.7.1 age confidence project.dependencies patch
multidict ==6.7.0==6.7.1 age confidence patch
myst-parser <6,>=5==5.0.0 age confidence project.optional-dependencies pin
pydantic (changelog) ==2.11.7==2.12.5 age confidence minor
pydantic_core ==2.33.2==2.41.5 age confidence minor
python-dotenv ==1.1.0==1.2.1 age confidence minor
requests (source, changelog) ==2.32.4==2.32.5 age confidence patch
simplecoloredlogs ==1.3.0==1.16.1.2026 age confidence project.optional-dependencies minor
soupsieve ==2.8.1==2.8.3 age confidence project.optional-dependencies patch
soupsieve ==2.8.1==2.8.3 age confidence project.dependencies patch
soupsieve ==2.7==2.8.3 age confidence minor
soupsieve ==2.8.1==2.8.3 age confidence patch
sphinx (changelog) <10,>=9==9.1.0 age confidence project.optional-dependencies pin
starlette (changelog) ==0.50.0==0.52.1 age confidence project.optional-dependencies minor
starlette (changelog) ==0.50.0==0.52.1 age confidence project.dependencies minor
starlette (changelog) ==0.49.1==0.52.1 age confidence minor
starlette (changelog) ==0.50.0==0.52.1 age confidence minor
typing-inspection (changelog) ==0.4.1==0.4.2 age confidence patch
uvicorn (changelog) ==0.24.0==0.40.0 age confidence project.optional-dependencies minor
uvicorn (changelog) ==0.24.0==0.40.0 age confidence project.dependencies minor
uvicorn (changelog) ==0.34.0==0.40.0 age confidence minor

Release Notes

fastapi/fastapi (FastAPI)

v0.128.4

Compare Source

Refactors
  • ♻️ Refactor internals, simplify Pydantic v2/v1 utils, create_model_field, better types for lenient_issubclass. PR #​14860 by @​tiangolo.
  • ♻️ Simplify internals, remove Pydantic v1 only logic, no longer needed. PR #​14857 by @​tiangolo.
  • ♻️ Refactor internals, cleanup unneeded Pydantic v1 specific logic. PR #​14856 by @​tiangolo.
Translations
Internal

v0.128.3

Compare Source

Refactors
  • ♻️ Re-implement on_event in FastAPI for compatibility with the next Starlette, while keeping backwards compatibility. PR #​14851 by @​tiangolo.
Upgrades
  • ⬆️ Upgrade Starlette supported version range to starlette>=0.40.0,<1.0.0. PR #​14853 by @​tiangolo.
Translations
Internal
  • 👷 Run tests with Starlette from git. PR #​14849 by @​tiangolo.
  • 👷 Run tests with lower bound uv sync, upgrade fastapi[all] minimum dependencies: ujson >=5.8.0, orjson >=3.9.3. PR #​14846 by @​tiangolo.

v0.128.2

Compare Source

Features
Fixes
Docs
Translations
Internal

v0.128.1

Compare Source

Features
  • ✨ Add viewport meta tag to improve Swagger UI on mobile devices. PR #​14777 by @​Joab0.
  • 🚸 Improve error message for invalid query parameter type annotations. PR #​14479 by @​retwish.
Fixes
Refactors
Docs
Translations
Internal

v0.128.0

Compare Source

Breaking Changes
Internal

v0.127.1

Compare Source

Refactors
Docs
Translations
Internal

v0.127.0

Compare Source

Breaking Changes
Translations
  • 🔧 Add LLM prompt file for Korean, generated from the existing translations. PR #​14546 by @​tiangolo.
  • 🔧 Add LLM prompt file for Japanese, generated from the existing translations. PR #​14545 by @​tiangolo.
Internal

v0.126.0

Compare Source

Upgrades
  • ➖ Drop support for Pydantic v1, keeping short temporary support for Pydantic v2's pydantic.v1. PR #​14575 by @​tiangolo.
    • The minimum version of Pydantic installed is now pydantic >=2.7.0.
    • The standard dependencies now include pydantic-settings >=2.0.0 and pydantic-extra-types >=2.0.0.
Docs
Translations
  • 🔧 Add LLM prompt file for Ukrainian, generated from the existing translations. PR #​14548 by @​tiangolo.
Internal

v0.125.0

Compare Source

Breaking Changes
  • 🔧 Drop support for Python 3.8. PR #​14563 by @​tiangolo.
    • This would actually not be a breaking change as no code would really break. Any Python 3.8 installer would just refuse to install the latest version of FastAPI and would only install 0.124.4. Only marking it as a "breaking change" to make it visible.
Refactors
Docs
Translations
Internal

v0.124.4

Compare Source

Fixes

v0.124.3

Compare Source

Fixes
  • 🐛 Fix support for tagged union with discriminator inside of Annotated with Body(). PR #​14512 by @​tiangolo.
Refactors
Docs
Translations
Internal

v0.124.2

Compare Source

Fixes
  • 🐛 Fix support for if TYPE_CHECKING, non-evaluated stringified annotations. PR #​14485 by @​tiangolo.

v0.124.1

Compare Source

Fixes
  • 🐛 Fix handling arbitrary types when using arbitrary_types_allowed=True. PR #​14482 by @​tiangolo.
Docs
Internal

v0.124.0

Compare Source

Features
Internal

v0.123.10

Compare Source

Fixes

v0.123.9

Compare Source

v0.123.8

Compare Source

Fixes
  • 🐛 Fix OpenAPI security scheme OAuth2 scopes declaration, deduplicate security schemes with different scopes. PR #​14455 by @​tiangolo.

v0.123.7

Compare Source

Fixes

v0.123.6

Compare Source

Fixes
  • 🐛 Fix support for functools wraps and partial combined, for async and regular functions and classes in path operations and dependencies. PR #​14448 by @​tiangolo.

v0.123.5

Compare Source

Features
Fixes
  • 🐛 Fix optional sequence handling with new union syntax from Python 3.10. PR #​14430 by @​Viicos.
Refactors
  • 🔥 Remove dangling extra condiitonal no longer needed. PR #​14435 by @​tiangolo.
  • ♻️ Refactor internals, update is_coroutine check to reuse internal supported variants (unwrap, check class). PR #​14434 by @​tiangolo.
Translations

v0.123.4

Compare Source

Fixes
  • 🐛 Fix OpenAPI schema support for computed fields when using separate_input_output_schemas=False. PR #​13207 by @​vgrafe.
Docs

v0.123.3

Compare Source

Fixes

v0.123.2

Compare Source

Fixes

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot added the dependencies label Feb 7, 2026
@renovate renovate bot force-pushed the renovate/python-updates branch from bafa7a5 to 1556450 Compare February 7, 2026 11:36
@Medicopter117 Medicopter117 merged commit fbce692 into main Feb 7, 2026
8 of 9 checks passed
@renovate renovate bot deleted the renovate/python-updates branch February 7, 2026 11:37
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant